home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2004 #2 / K-CD-2-2004.ISO / OpenOffice Sv / f_0397 / python-core-2.2.2 / lib / test / test_tempfile.py < prev    next >
Encoding:
Text File  |  2003-07-18  |  227 b   |  11 lines

  1. # SF bug #476138: tempfile behavior across platforms
  2. # Ensure that a temp file can be closed any number of times without error.
  3.  
  4. import tempfile
  5.  
  6. f = tempfile.TemporaryFile("w+b")
  7. f.write('abc\n')
  8. f.close()
  9. f.close()
  10. f.close()
  11.